home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / modellib / kwrite_info < prev    next >
Encoding:
Text File  |  1990-02-13  |  487 b   |  24 lines

  1. #!/bin/csh
  2. #$argv[1]: name of dynamical system class
  3. #$argv[2-] codenames of dynamical systems in this class
  4. #
  5.  
  6. set outdir = $KAOSHOME/helplib
  7. set outfile = $outdir/online_help.12
  8.  
  9. echo "Collect information files for a set of dynamical sytems to a class ${argv[1]}..."
  10.  
  11. cat > $outfile <<END
  12. /*
  13.     This file is automatically written by kwrite_info.
  14. */
  15. /* KAOS DYNAMICAL SYSTEM CLASS = ${argv[1]} */
  16.  
  17. END
  18.  
  19. set argum = 
  20. foreach argum ($argv[2-])
  21.     cat ${argum}.info >> $outfile
  22. end
  23. echo Done!
  24.